home *** CD-ROM | disk | FTP | other *** search
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- REMOVE Basic Comments (') SYSTEM
-
- Version 1.00
-
- For the IBM-PC XT/AT and Compatibles
-
- Copyright (C) 1991 - 1992, TheZoftWare Programming System
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Introduction
-
- Sometimes when you encounter a .BASic source code that you like and
- want to make use of it, but you find out that is too large in size
- because of some comments that you will not need when compiling and
- it's very tedious to remove line by line manually. That's way I created
- this QuickBASIC Comment Remover that will scan your source .BAS file
- in ASCII Format and delete all uneed comments.
-
- The use of this program is Very Easy and you will just need to supply
- the filename of the .BAS file as the following example:
-
- C>REMOVE terminal.bas <Return>
-
- This will remove most of the comments from the BASIC file 'TERMINAL.BAS'
-
-
- DEFINT A-Z
- ' This comment will be deleted by REMOVE.
- ' This too.
- FOR X=1 to 100
- PRINT X
- NEXT X
- ' This Too, Will be removed.
- END
-
-
- This program is FreeWare and it's fully functional. If you have some
- comments, suggestions or questions please write to:
-
- TheZoftWare PS
- Attn. Manuel Godinez
- P.O. Box 8761
- Green Bay, WI 54302-8761.
-
-
- NOTE: The address 1:139/520 (FidoNet) and Phone Number (414) 437-8843
- are NO longer in service. You might get a hold of me by sending
- a netmail to 1:139/0.
-
-
-
-
-
-